37ca97b4d1974063baf820d953acdd8f654613d6,bundles/scripting/jsp/src/main/java/org/apache/sling/scripting/jsp/jasper/servlet/JspServletWrapper.java,JspServletWrapper,service,#HttpServletRequest#HttpServletResponse#boolean#,296

Before Change


        } catch (IllegalStateException ex) {
            throw handleJspException(ex);
        } catch (Exception ex) {
            throw handleJspException(ex);
        }

        try {

After Change


        } catch (IllegalStateException ex) {
            handleJspException(ex);
        } catch (Exception ex) {
            handleJspException(ex);
        }

        try {